home *** CD-ROM | disk | FTP | other *** search
/ CyberMycha Extra 2004 January / CyberMycha Extra 1-2004 (Poland) (Disc 2).bin / Pippi / gmtb.dir / 00034_makeSmokeList.ls < prev    next >
Encoding:
Text File  |  2001-09-12  |  250 b   |  19 lines

  1. property listx
  2.  
  3. on beginSprite me
  4.   puppetTempo(1)
  5.   listx = []
  6. end
  7.  
  8. on exitFrame me
  9.   listx[listx.count + 1] = the mouseLoc
  10.   if sprite(me.spriteNum).playing = 1 then
  11.     go(the frame)
  12.   end if
  13. end
  14.  
  15. on endSprite me
  16.   put listx
  17.   put listx.count
  18. end
  19.